home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tcclib.exe / PUTCUR.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-07-18  |  184 b   |  12 lines

  1. #include <dos.h>
  2.  
  3. void PutCursor( int Top, int Bottom )
  4. {
  5.     union REGS reg;
  6.  
  7.     reg.x.ax = 0x0100;
  8.     reg.h.ch = Bottom & 15;
  9.     reg.h.cl = Top    & 15;
  10.     int86( 0x10, ®, ® );
  11. }
  12.